home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
fish
/
751-760
/
752
/
toolmanager
/
scripts
/
playsample.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-03-18
|
1KB
|
26 lines
/*********************************************************/
/* */
/* rexx:PlaySample.rexx V1.0 */
/* */
/* ARexx script for UPD sound daemon */
/* */
/* © 1991 Stefan Becker */
/* */
/* ToolManager configuration file entry for this script: */
/* */
/* CLI: */
/* Alias = Play Sample */
/* RealName = rx PlaySample */
/* # */
/* */
/*********************************************************/
/* Parse command line */
PARSE ARG cmdline
/* Send message to UPD's ARexx port */
ADDRESS PLAY 'file ' cmdline
/* Exit script */
RETURN 0